home *** CD-ROM | disk | FTP | other *** search
/ Computer Life 1995 December / Computer Life December 1995.iso / astound / ast30day.3 / ASTOUND / MCITMPL / MIDI.AMT < prev    next >
INI File  |  1995-03-15  |  1KB  |  75 lines

  1. [MCITemplates]
  2. PlayNormal=Play
  3. PlayPos=Play From Position
  4. PlayTrans=Play During Transition
  5. PlayTempo=Play At Tempo
  6.  
  7. [Script PlayNormal Start]
  8.  
  9.     [Beginning]
  10.     open {DEVICE}{FILENAME} alias {ALIAS}
  11.  
  12.     [Entry]
  13.     play {ALIAS}
  14.  
  15.     [Exit]
  16.     stop {ALIAS}
  17.  
  18.     [Ending]
  19.     close {ALIAS}
  20.  
  21. [Script End]
  22.  
  23. [Script PlayTempo Start]
  24.  
  25.     [Beginning]
  26.     open {DEVICE}{FILENAME} alias {ALIAS}
  27.  
  28.     [Entry]
  29.     play {ALIAS}
  30.     set {ALIAS} tempo {BEATS PER MINUTE}
  31.  
  32.     [Exit]
  33.     stop {ALIAS}
  34.  
  35.     [Ending]
  36.     close {ALIAS}
  37.  
  38. [Script End]
  39.  
  40. [Script PlayPos Start]
  41.  
  42.     [Beginning]
  43.     open {DEVICE}{FILENAME} alias {ALIAS}
  44.     set {ALIAS} time format tmsf
  45.     seek {ALIAS} to {TIME}
  46.  
  47.     [Entry]
  48.     play {ALIAS}
  49.  
  50.     [Exit]
  51.     stop {ALIAS}
  52.  
  53.     [Ending]
  54.     close {ALIAS}
  55.  
  56. [Script End]
  57.  
  58. [Script PlayTrans Start]
  59.  
  60.     [Beginning]
  61.     open {DEVICE}{FILENAME} alias {ALIAS}
  62.     play {ALIAS}
  63.  
  64.     [Entry]
  65.     pause {ALIAS}
  66.  
  67.     [Exit]
  68.     play {ALIAS}
  69.  
  70.     [Ending]
  71.     stop {ALIAS}
  72.     close {ALIAS}
  73.  
  74. [Script End]
  75.